☁️ Loving our new documentation website? Provide feedback in the CloudCannon Community! ✨

image

Table of contents

Description:

This key defines the path to an image in your source files used when displaying the structure value.

Can be either a source (has priority) or output path.

Appears in:
└── [*]
    └── image
Type:
string
Examples:

In this example, we have configured the /images/blog-icon.png image for the entry labeled Blog in the article_information Structure.

Copied to clipboard
_structures:
  article_information:
    values:
      - label: Blog
        image: /images/blog-icon.png
{
  "_structures": {
    "article_information": {
      "values": [
        {
          "label": "Blog",
          "image": "/images/blog-icon.png"
        }
      ]
    }
  }
}
Open in a new tab